body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.hidden { display: none; }
.fade { animation: fadeIn 0.3s ease; }

.register-bg {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}
.register-card {
    width: 450px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.icon-circle {
    width: 75px;
    margin: auto;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-circle img {
    width: 75px;
    filter: drop-shadow(0 0 6px rgba(0, 255, 90, 0.5));
}

/* Titles */
h2 {
    font-size: 26px;
    font-weight: 600;
    color: #0f4128;
}

.subtitle {
    margin-bottom: 20px;
    opacity: 0.7;
}

.section-title {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f4128;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 12px;
    outline: none;
}

.input-field:focus {
    border-color: #32b768;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

/* Show password */
.show-pass {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: -4px;
    margin-bottom: 20px;
}

/* Register button */
.register-btn {
    width: 100%;
    padding: 14px;
    background: #32b768;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 5px 12px rgba(50, 183, 104, 0.4);
}

.register-btn:hover {
    background: #28985a;
}

/* Bottom link */
.bottom-text {
    margin-top: 18px;
}

.bottom-text a {
    color: #116f3b;
    font-weight: 600;
    text-decoration: none;
}
.bottom-text a:hover {
    text-decoration: underline;
}
.full-width {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    margin-top: -5px;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

