/* style.css */
* {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
    font-family: Arial, sans-serif;
}

body {
    display        : flex;
    justify-content: center;
    align-items    : center;
    height         : 100vh;
    background     : linear-gradient(to right, #c21212, #d494ac);
}

.login-container {
    display        : flex;
    justify-content: center;
    align-items    : center;
    width          : 100%;
    height         : 100vh;
}

.login-box {
    background   : white;
    padding      : 40px;
    border-radius: 12px;
    box-shadow   : 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align   : center;
    max-width    : 350px;
    width        : 100%;
}

.logo {
    width        : 100px;
    margin-bottom: 15px;
}

h2 {
    font-size    : 22px;
    margin-bottom: 20px;
    color        : #333;
}

.input-group {
    position     : relative;
    margin-bottom: 15px;
}

.input-group input {
    width        : 100%;
    padding      : 12px 40px 12px 12px;
    border       : 1px solid #ddd;
    border-radius: 8px;
    font-size    : 16px;
    transition   : 0.3s;
}

.input-group input:focus {
    border-color: #4facfe;
    outline     : none;
}

.input-group .icon {
    position : absolute;
    right    : 15px;
    top      : 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color    : #4facfe;
}

button {
    width        : 100%;
    padding      : 12px;
    background   : #e53961;
    border       : none;
    color        : white;
    font-size    : 18px;
    border-radius: 8px;
    cursor       : pointer;
    transition   : 0.3s;
}

button:hover {
    background: #3b8cf0;
}

.error-message {
    color        : red;
    font-size    : 14px;
    margin-bottom: 10px;
}

.register-link {
    display        : block;
    margin-top     : 15px;
    font-size      : 14px;
    color          : #4facfe;
    text-decoration: none;
    transition     : 0.3s;
}

.register-link:hover {
    text-decoration: underline;
}