body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #333;
}
a {
    text-decoration: none;
}
.input-box {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #701f27;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}


.note {
    font-size: 13px;
    color: #777;
    margin-top: 20px;
}

.card {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.card h2 {
    margin-bottom: 10px;
    color: #333;
}

.card p {
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

.mail-container {
    max-width: 500px;
    background: #ffffff;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.mail-container h2 {
    margin-bottom: 20px;
    color: #333;
}

.mail-container p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}


.success-box {
    text-align: center;
    padding: 20px;
}

.success-icon {
    font-size: 40px;
    color: green;
    margin-bottom: 10px;
}

.auth-container {
    max-width: 400px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 15px;
    color: #333;
}

.auth-container .info-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.alert.success {
    background: #e6f9e6;
    border: 1px solid #66cc66;
    color: #2d662d;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 15% auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}


