* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #e9eff1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #4a4a4a;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background-color: white;
    padding: 40px 40px 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 500px;
    text-align: center;
}


.subtitle {
    margin-bottom: 30px;
    font-size: 25px; /* Larger font size for emphasis */
    color: #007BFF; /* Blue color to stand out */
    font-weight: bold; /* Bold text for prominence */
    text-transform: uppercase; /* Optional: Makes the text uppercase */
    letter-spacing: 1px; /* Optional: Adds spacing between letters */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}


.textbox {
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.textbox input:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #2fb457;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

.links {
    margin-top: 15px;
    font-size: 14px;
}

.links a {
    color: #3498db;
    text-decoration: none;
    /*margin: 0 10px; */
    white-space: nowrap;
}

.links a:hover {
    text-decoration: underline;
}

@media (max-width: 400px) {
    .login-box {
        width: 90%;
        padding: 30px;
    }
}

.logo {
    width: 400px;  /* Adjust size as needed */
    height: auto;  /* Maintain aspect ratio */
    margin-bottom: 10px;  /* Space between logo and the title */
}

/* message of the day styling */ 

.motd {
    margin: 20px 0; /* Adds space around the MOTD */
    padding: 15px; /* Adds padding inside the box */
    background-color: #f9f6ea; /* Light background for contrast */
    border: 1px solid #e2d9c7; /* Subtle border to define the box */
    border-radius: 6px; /* Rounded corners for a modern look */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    text-align: center; /* Center-aligns the text */
    font-size: 16px; /* Adjust font size for readability */
    font-weight: 500; /* Slightly bolder text for emphasis */
    color: #2c3e50; /* Dark text for good contrast */
}

.ps-button {
    border: none;
    background-color: #2fb457;
    color: white;
    font-family: Helvetica, sans-serif;
    font-weight: bold;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 2px 2px;
    border-radius: 5px;
    cursor: pointer;
}

#signin{
    color: white;
}