
.email-change-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    text-align: center;
}


.email-change-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333333;
}


.email-description {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.5;
}


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


.email-change-form label {
    font-weight: bold;
    color: #333333;
    display: block;
    margin-bottom: 8px;
}


input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px; 
    border: 1px solid #ccc; 
    background-color: #f0f0f0; 
    color: #333;
    transition: all 0.3s ease; 
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1); 
    font-family: inherit;
    box-sizing: border-box;
}


input[type="email"]:focus {
    border-color: #3498db;
    background-color: #fff; 
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5); 
    outline: none; 
}


.error {
    color: #ff0000;
    font-size: 0.9rem;
    margin-top: 5px;
}


.email-button {
    padding: 12px 20px;
    font-size: 1rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
    background-color: #3498db; 
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}


.email-button:hover {
    background-color: #2980b9;
}


.back-to-account {
    margin-top: 20px;
}

.back-to-account a {
    font-size: 0.9rem;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-account a:hover {
    color: #2980b9;
}
