body {
    background: linear-gradient(to bottom, #fce4d8, #f9f9f9);
    font-family: 'Poppins', sans-serif;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.login-header {
    font-size: 26px;
    color: #e88565;
    margin-bottom: 15px;
    font-weight: bold;
}

.login-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.input-field {
    position: relative;
    margin-bottom: 20px;
}

.input-field input {
    width: 100%;
    padding: 15px 40px;
    border: 2px solid #ddd;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field input:focus {
    border-color: #e88565;
    box-shadow: 0 0 8px rgba(232, 133, 101, 0.3);
}

.input-field span {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #e88565;
    font-size: 18px;
}

.login-button {
    width: 100%;
    background: #e88565;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-button:hover {
    background: #d37458;
}

.divider {
    margin: 20px 0;
    font-size: 14px;
    color: #aaa;
    position: relative;
}

.divider:before, .divider:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.divider:before {
    left: 0;
}

.divider:after {
    right: 0;
}

.google-login {
    background: #4285F4;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.google-login:hover {
    background: #357ae8;
}

.login-links a {
    color: #e88565;
    font-size: 14px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.login-links a:hover {
    color: #d37458;
}

.alternative-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285F4;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
}

.login-link{
    display: flex;
    align-items: center;
    background-color: #d37458;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 10px;
}

.google-icon {
    margin-right: 10px;
}

.separator {
    margin: 0 10px;
    color: #999;
}

.login-link {
    color: #007bff;
    text-decoration: none;
}

.login-links{
    color: #d37458;
}

.error-message {
    margin-top: -22px;
    text-align: left;
    color: red;
    padding-left: 20px;
    margin-bottom: 10px;
}
