﻿/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Full-page background */
body {
    background: linear-gradient(135deg, #720505, #980428  );
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Container */
.login-container {
    background: #fff ;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 600px;
    
}

/* Heading */
.login-container h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Input Group */
.input-group {
    margin-bottom: 15px;
}

/* Input Field */
.input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 10px;
    border: none;
    background: #980428 /*#667eea*/;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-login:hover {
    background: #764ba2;
}

/* Register Text */
.register-text {
    margin-top: 10px;
    font-size: 14px;
}

.register-text a {
    color: #667eea;
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}