/***** AUTHORIZATION — LOGIN *******/
.login-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
}

.login-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.login-intro {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.login-form label {
    display: block;
    margin-bottom: 5px;
}

.login-form input {
    width: 100%;
    padding: 7px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}
.hp-field input {
    margin-top: 0;
    padding: 4px 6px;
    border: 1px solid #eee;
    background: #fafafa;
    font-size: 0.85em;
}

/**** end of aol *********/

/*****AUTHORIZATION OF REGISTRATION *******/
.register-success-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.register-success-title {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.register-success-message {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.register-success-actions .submit-btn {
    text-decoration: none;
    display: inline-block;
}
/**** end of aog *********/

/*****AUTHORIZATION OF REGISTRATION — ERROR *******/
.register-error-actions {
    margin-top: 25px;     /* pushes the button down */
    text-align: center;   /* centers the button */
}

.register-error-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.register-error-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #b00000; /* subtle red tone */
}

.register-error-message {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.register-error-actions .submit-btn {
    text-decoration: none;
    display: inline-block;
}
/**** end of aog *********/


/*---------GOLF CARD PEI ----------*/
.golf-card-glb {
    border: 2px solid #2a7f2a;
    padding: 12px;
    margin: 12px 0;
    border-radius: 10px;
    background: #c5e0c5;
}
/* North Cape */
.golf-card-glb.north-cape {
    border-color: #1e90ff; /* blue */
}

/* Green Gables */
.golf-card-glb.green-gables {
    border-color: #ff8c00; /* orange */
}

/* Charlottetown */
.golf-card-glb.charlottetown {
    border-color: #cc0000; /* red */
}

/* Summerside */
.golf-card-glb.summerside {
    border-color: #8a2be2; /* purple */
}

/* Red Sands Shore */
.golf-card-glb.red-sands-shore {
    border-color: #d2691e; /* brownish sand */
}

/* Points East */
.golf-card-glb.points-east {
    border-color: #228b22; /* forest green */
}


/*-----END GOLF CARD GLOBAL ------*/


/*---------INFO CARD ------------*/
.info-card p {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  margin: 0;
}
.link-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.link-list a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: inherit;
  justify-content: center;
}
.link-list a {
  transition: 0.15s ease;
}
.link-list a img {
  display: block;
}
.link-list a {
  white-space: nowrap;
}

.link-list a:hover {
  background: #f7fbff;
  border-color: #cde6ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/********** END INFO CARD -------*/

/* ================================
   MEMBER TOOL CARDS – INDEX PAGE
   ================================ */

.member-tool {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px;
    margin: 7px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    max-width: 650px;
}

.member-tool h5 {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.member-tool p {
    margin: 6px 0;
    line-height: 1.4;
}

.member-tool em {
    color: #666;
    font-size: 0.9rem;
}

.member-tool .button {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.member-tool:hover {
    transform: translateY(-2px);
    transition: transform 0.15s ease;
}


/****** mesage box ******/
.message-box {
    width: 95%;
    min-height: 140px;
    resize: vertical;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}
/*** END message box ***/

/*** newsletter ***/
.newsletter-choice {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.newsletter-choice label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0; /* override the global label spacing */
}


/**********************/
/*** PW TOGGLE EYE  ***/
/**********************/
.password-wrap {
    position: relative;
    display: block;
    margin-bottom: 20px; /* add spacing below */
}

.password-wrap input {
    padding-right: 8px; /* space for the eye */
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1rem;
    color: #555;
    user-select: none;
}

.toggle-eye:hover {
    color: #000;
}
/*******END EYE  *******/
/***********************/
/***** REGISTRY ********/
.register-wrapper {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

.register-title {
    text-align: center;
    margin-bottom: 10px;
}

.register-intro {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.05em;
    text-align: center;
}

.register-form label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.register-form input {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

.submit-btn {
    padding: 12px 28px;
    font-size: 1.15em;
    border: none;
    border-radius: 6px;
    background: #0066cc;
    color: #fff;
    cursor: pointer;
}

.submit-btn:hover {
    background: #004999;
}
/***** end registry **********/
