/* assets/css/style.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    max-width: 400px;
    width: 100%;
    border: 2px solid #000000;
    padding: 30px 25px;
    background-color: #ffffff;
}

/* Logo container and image */
.logo-container {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #000000;
    padding-bottom: 20px;
}

.logo {
    max-width: 150px;
    height: auto;
    display: inline-block;
    border: none; /* Ensure no border on image */
}

/* Headings */
h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
}

/* Form groups */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #000000;
    background-color: #ffffff;
    font-size: 16px;
    color: #000000;
    border-radius: 0; /* Ensure no rounded corners */
}

input:focus {
    outline: none;
    background-color: #f0f0f0;
}

/* Button */
button {
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0; /* Ensure no rounded corners */
    margin-top: 10px;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Error message */
.error {
    border: 2px solid #000000;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    background-color: #ffffff;
    position: relative;
}

.error::before {
    content: '!';
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
}

/* Links and text */
p {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #000000;
    padding-bottom: 2px;
}

a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .container {
        padding: 20px 15px;
        border-width: 1px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .logo-container {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    input, button {
        padding: 8px;
    }
}

@media screen and (max-width: 320px) {
    .logo {
        max-width: 100px;
    }
    
    .container {
        padding: 15px 10px;
    }
}