Login.css

Login.css
 avatar
unknown
plain_text
a year ago
1.4 kB
7
Indexable
/* Reset some browser defaults */

/* Make the page fill the entire browser window */
body {
    line-height: 1;

    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Set up a background color for the login form */
.login-container {
    background-color:rgb(209, 200, 79);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Style the form */
.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.login-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.login-input {
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 15px;
}

.login-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
}

.login-button:hover {
    background-color: #45a049;
}

.login-error {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
}
.login-title{
    color: black;
}
Editor is loading...
Leave a Comment