Skip to content
Snippets Groups Projects
Login.css 3.41 KiB
.container{
    display:flex;
    flex-direction: column;
    margin:auto;
    margin-top:100px;
    background:rgb(34, 31, 31);
    padding-bottom: 30px;
    width: 600px;

}

body {
    margin: 0; /* Remove default margin */
    height: 100vh; /* Full viewport height */
    background: linear-gradient(to right, maroon, orange); /* Gradient colors */
}

.header{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    margin-top:10px;
}

.text{
    color:White;
    font-size:25px;
    font-weight: 600;
}

.underline{
    width:70px;
    height: 5px;
    background:maroon;
    border-radius: 9px;
}

.inputs{
    margin-top: 55px;
    display:flex;
    flex-direction: column;
    gap:10px;
}

.input{
    display:flex;
    align-items: center;
    margin:auto;
    width:480px;
    height:40px;
    background-color: rgb(179, 174, 174);
    border-radius: 6px;
    
}

.input img{
    margin: 0px 30px;
}

.input input{
    height:50px;
    width:400px;
    background: transparent;
    border:none;
    outline:none;
    color: grey;
    font-size: 19px;
    
}

.submitTerms{
    /* padding-left: 400px;
    padding-bottom: 10px; */
    margin-left: 400px;
    margin-bottom: 10px;
    margin-top: 27px;
    color: gray;
    font-size: 15px;
    cursor:pointer;
    font-weight: 500;
}

.submitTerms img{
    margin: 0px 10px;
}

.submit-container{
    display: flex;
    margin-left:450px;
    padding-right: 30px;
    /* color:black;
    font-size:20px;
    font-weight: 5000;
    cursor:pointer; */
}



.othercred{
    display: flex;
    padding-left: 10px;
    position: relative;
    top: -50px; /* Adjust the value to move it higher */

}


.submitMore {
    padding-left: 10px;
    padding-right: 10px;
    /* margin-left: 50px; */
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color:white;
    border-radius: 50px;
    background-color: maroon;
    width: 100px;
    height:59px;
    text-align: center;

}

.submitMore:hover {
    color: rgb(218, 124, 124);
}

.submit{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 220px;
    height:59px;
    color:white;
    background: maroon;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;

}

.submit:hover {
    color: rgb(218, 124, 124);
}

.home-auth {
    display: flex;
    justify-content: center; /* Center the link */
    margin-top: 20px; /* Add some spacing above */
    margin-bottom: 20px; /* Add some spacing below */
}

.login-link {
    color: white; /* Adjust color if needed */
    font-size: 14px; /* Adjust font size */
    cursor: pointer; /* Pointer cursor on hover */
}

.login-button {
    display: inline-flex; /* Use inline-flex for proper centering */
    background-color: maroon; /* Background color */
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove default border */
    border-radius: 20px; /* Adjust for rounded corners */
    padding: 10px 30px; /* Adjust padding for size */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor */
    transition: background-color 0.3s; /* Smooth transition */
    margin: auto; /* Center it */
    justify-content: center; /* Center text */
    align-items: center; /* Center text */
}

.login-button:hover {
    background-color: rgb(218, 124, 124); /* Hover effect */
}