body {
    background: linear-gradient(135deg, #8597FF, #8F5FC9);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.Page {
    width: 360px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.Login {
    width: 360px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.Login h1 {
    color: white;
    margin-bottom: 20px;
}

.Login p {
    color: #e0e0e0;
    margin-bottom: 24px;
    font-size: 14px;
}

.Login input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 14px;
    outline: none;
}



.Login button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient( 134deg, #5E70D6, #36C9FF);
    color: white;
    cursor: pointer;
    font-size: 15px;
}
.Login button:hover {
    background: linear-gradient( 134deg, #36C9FF, #5E70D6);
    opacity: 0.5;
}
.obtions {
    margin: 20px 0;
    color:  #e0e0e0;
    font-size: 10px;
}

.social {
    display: flex;
}

.social button {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.lane {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    margin-top: 10px;
    color: white;
    
}

.lane a {
    color: #2578fe;
    text-decoration: none;
}

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


.obtions {
    margin-top: 20px;
    text-align: center;
}

.social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

footer {
    margin-top: 20px;
    color: white;
    font-size: 12px;
}

footer a {
    color: #2578fe;
    text-decoration: none;
    font-weight: bold;
}