html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;

}
body {
       background: #f8f4ef;
}
section.sign {
   color: #4a3c31;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
    margin: 10px 0;
}

.account-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(138, 98, 56, 0.12);
    padding: 10px 40px 40px; 
    text-align: center;
    max-width: 500px;
    animation: fadeIn 0.6s ease;
} 

.bakery-name {
    color: #8a6238;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.sign form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d4c2aa;
    border-radius: 12px;
    margin: 14px 0;
    font-size: 16px;
    background: #fcf9f5;
    color: #4a3c31;
    transition: 0.3s;
}

form input:focus {
    outline: none;
    border-color: #b8945f;
    box-shadow: 0 0 0 3px rgba(184, 148, 95, 0.25);
}
.role-group {
    text-align: center;
    margin-top: 10px;
}
label.select {
    font-size: 19px;
    font-weight: 600;
    color: #8a6238;
}
.radio-row {
    display: flex;
    justify-content: center; 
    gap: 35px;
    margin-top: 12px;
    margin-bottom: 20px;
}

label.radio-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    cursor: pointer;
    /* padding: 8px 14px; */
    /* border-radius: 10px; */
}
.radio-box:hover {
    background: #f3e8da;
}
.radio-row input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    background: #8a6238;
    color: #fff;
}

.btn:hover {
    background: #6d4c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 98, 56, 0.3);
}

.login-link {
    margin-top: 22px;
    font-size: 17px;
}

.login-link a {
    text-decoration: none;
    color: #8a6238;
    font-size: 19px;
    font-weight: 600;
    transition: 0.2s;
}

.login-link a:hover {
    /* color: #9d8e78; */

    color: #b18a63;
}