Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
107 changes: 107 additions & 0 deletions style2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

.flex-r, .flex-c {
justify-content: center;
align-items: center;
display: flex;
}

.flex-c {
flex-direction: column;
}

.flex-r {
flex-direction: row;
}

.container {
width: 100%;
min-height: 100vh;
padding: 20px 10px;
background-color: #E5E5E5; /* added background-color instead of background */
display: flex; /* added to center the login-text container */
justify-content: center;
}

.login-text {
background-color: #F6F6F6;
max-width: 400px;
min-height: 500px;
border-radius: 10px;
padding: 20px; /* increased padding for better spacing */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* added box-shadow for depth */
}

.logo {
margin-bottom: 20px;
}

.logo span, .logo span i {
font-size: 25px;
color: #0d8aa7;
}

.login-text h1 {
font-size: 25px;
margin-bottom: 10px; /* added margin-bottom for better spacing */
}

.login-text p {
font-size: 15px;
color: #000000B2;
margin-bottom: 20px; /* added margin-bottom for better spacing */
}

form {
align-items: flex-start !important;
width: 100%;
margin-top: 15px;
}

.input-box {
margin: 10px 0;
width: 100%;
}

.label {
font-size: 15px;
color: black;
margin-bottom: 3px;
}

.input {
background-color: #F6F6F6;
padding: 0 5px;
border: 2px solid rgba(216, 216, 216, 1);
border-radius: 10px;
overflow: hidden;
justify-content: flex-start;
}

input {
border: none;
outline: none;
padding: 10px 5px;
background-color: #F6F6F6;
flex: 1;
width: 100%; /* added width: 100% to make input field full width */
}


.extra-line {
font-size: 15px;
font-weight: 600;
margin-top: 20px; /* added margin-top for better spacing */
}

.extra-line a {
color: #0095B6;
text-decoration: none; /* added text-decoration: none to remove underline */
}