* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    width: 200px;
}

h2 {
    text-align: center;
    color: #2d3436;
    margin-bottom: 20px;
}

p {
    text-align: center;
    color: #636e72;
    margin-bottom: 30px;
}

.error {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
}

.input-group input:focus {
    border-color: #0984e3;
    outline: none;
}

.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 100px;
}

.forgot-link {
    color: #0984e3;
    text-decoration: none;
    font-size: 14px;
}

.btn {
    background-color: #00cec9;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #01a3a4;
}

.signup-text {
    text-align: center;
    font-size: 14px;
}

.signup-text a {
    color: #0984e3;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}
