@import url("./signup.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica;
}

body {
    background: #f0f2f5;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left {
    width: 500px;
    margin-right: 80px;
    margin-bottom: 100px;
    font-family: Helvetica;
}

.left h1 {
    color:  #0866FF;
    font-size: 60px;
    font-weight: bold;
}

.left p {
    font-size: 28px;
    line-height: 32px;
    margin-top: 10px;
}

.right {
    width: 400px;
}

.loginbox {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    height: 350px;
}

.loginbox input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    font-size: 16px;
    border: 1px solid #dddfe2;
    border-radius: 6px;
}

.loginbox input:focus {
    outline: none;
    border-color: #1877F2;
}

.loginbtn {
    width: 100%;
    background: #1877f2;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.loginbtn:hover {
    background: #166fe5;
}

.forgot {
    display: block;
    margin: 15px 0;
    color: #1877f2;
    text-decoration: none;
    font-size: 14px;
}

.forgot:hover {
    text-decoration: underline;
}

.line {
    height: 1px;
    background: #dadde1;
    margin: 20px 0;
}

.createbtn {
    background: #42b72a;
    color: white;
    font-size: 17px;
    font-weight: bold;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.hre{
    text-decoration: none;
    color:white;
}
.createbtn:hover {
    background: #36a420;
}

.pagetext {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}



