* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #4a4a4a;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    xxbackground-image: url("../../assets/images/teideDSILogo.png");
}

.card {
    background: #303030;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

p {
    color: #666;
    line-height: 1.5;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 600;
    color: #555;
}

small {
    display: block;
    margin-top: 3px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border 0.2s;
    background-color: #222;
    color: white;
}

input[type="text"].otp-digit {
    width: 40px;
    text-align: center;
    font-size: 20px;
    padding: 12px;
    margin: 0 5px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

input[type="text"].otp-digit:focus {
    border-color: #007bff;
    outline: none;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
}

button,
input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.2s;
}

button:hover,
input[type="submit"]:hover {
    background: #0056b3;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.alert {
    padding: 12px;
    margin: 15px 0;
    border-radius: 8px;
    font-weight: 500;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.resend-area {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

#resendLink {
    color: #007bff;
    text-decoration: none;
    margin-left: 10px;
    cursor: pointer;
}

#resendLink:hover {
    text-decoration: underline;
}

.btn-logout {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: #dc3545;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.2s;
    font-weight: 600;
}

.btn-logout:hover {
    background: #c82333;
}
.loginLogo{
    width:-webkit-fill-available;
}