Skip to content

Commit

Permalink
Updated Login Page
Browse files Browse the repository at this point in the history
  • Loading branch information
Gautamchandar committed Jan 6, 2025
1 parent c37b377 commit 145d637
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 50 deletions.
10 changes: 4 additions & 6 deletions login.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,10 @@ <h1>Login</h1>
}
}
</script>
<footer class="footer">
Made with <span class="heart">❤️</span> by
<a target="_blank" href="https://github.com/Anjaliavv51/Matrubodhah">
@Sakthi
</a>
</footer>
<div class="footer">
Made with ❤️ by <a href="https://github.com/Anjaliavv51/Matrubodhah" target="_blank">@Sakthi</a>
</div>

<script src="scrollscript.js"></script>
<script src="audio.js"></script>

Expand Down
128 changes: 84 additions & 44 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,85 +1,125 @@
*{
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins",sans-serif;
font-family: "Poppins", sans-serif;
}
body{
background:#f1f1f1;

body {
background: #f1f1f1;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.wrapper{

.wrapper {
width: 330px;
padding: 7rem 1rem;
margin: 50px auto;
padding: 3rem 1.5rem;
background-color: #fff;
border-radius: 10px;
text-align: center;
box-shadow: 0 20px 35px rgba(0,0,0,0.1);
box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}
h1{

h1 {
font-size: 2rem;
color: #07001f;
margin-bottom: 1.2rem;
}
form input{
width: 92%;
outline:none;
border: 1px solid #fff;
padding: 12px , 20px;

form input {
width: 100%;
outline: none;
border: 1px solid #e4e4e4;
padding: 12px 20px;
margin-bottom: 10px;
border-radius: 20px;
background: #e4e4e4;
background: #f9f9f9;
transition: border-color 0.3s;
}
button{

form input:focus {
border-color: rgb(192, 192, 192);
}

button {
font-size: 1rem;
margin-top: 1.8rem;
margin-top: 1.5rem;
padding: 10px 0;
border-radius: 20px;
outline: none;
width: 90%;
width: 100%;
color: #fff;
cursor: pointer;
background: #f4885e
}
button:hover{
background: #E5A186
background: #f4885e;
transition: background 0.3s;
}

input:focus{
border: 1px solid rgb(192,192,192);
button:hover {
background: #e57353;
}
.terms{
margin-top: 0.2em;

.terms {
margin-top: 0.5em;
text-align: left;
font-size: 0.8rem;
color: #636363;
}
.terms input{

.terms input {
height: 1em;
width: 1em;
vertical-align: middle;
cursor: pointer;

margin-right: 0.5em;
}
.terms label{
font-size: 0.7rem;

.terms a {
color: #f4885e;
text-decoration: none;
}
.terms a{
color:#f4885e
/* text-decoration: none; */

.terms a:hover {
text-decoration: underline;
}
.member{
font-size: 0.8rem;
margin-top: 1.4rem;

.member {
font-size: 0.9rem;
margin-top: 1.5rem;
color: #636363;
}
.member a{
color:#f4885e
/* text-decoration: none;*/
}
.recover{

.member a {
color: #f4885e;
text-decoration: none;
}

.member a:hover {
text-decoration: underline;
}

.recover {
text-align: right;
font-size: 0.7rem;
margin: 0.3rem 1.4rem 0 0;
font-size: 0.8rem;
margin: 0.3rem 0;
}
.recover a{

.recover a {
text-decoration: none;
color: #4242b7;
}

.recover a:hover {
text-decoration: underline;
}

.footer {
margin-top: 1.5rem;
font-size: 0.8rem;
color: #636363;
text-align: center;
position: absolute;
bottom: 10px;
width: 100%;
}

0 comments on commit 145d637

Please sign in to comment.