/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Common Container Styles */
.container {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Input Field Styles */
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s;
}

input:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 5px white;
}

/* Button Styles */
button {
    width: 100%;
    padding: 12px 0;
    background: black;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: gray;
    color: white;
}
a{
    text-decoration: none; /* Remove underline */
    color: blue; /* Set text color to black */
    font-size: 20px; /* Increase font size */
    font-family: Arial, sans-serif; /* Optional: Set font style */
  }

  a:hover {
    color: darkgray; /* Optional: Change color on hover */
  }

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .container {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    input[type="text"], input[type="password"] {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        padding: 10px 0;
    }
}
