@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: "Rajdhani";
    background: linear-gradient(180deg, #ffffff 15%, #3c94d1 100%); 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    color: #000000;
}


form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555; 
}

form input[type="text"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

form input[type="email"],
form input[type="password"]{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}


form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #3c94d1;
    font-family: "Rajdhani";
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}


form a {
    color: #3c94d1;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline; 
}


form p {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

form p[style*="color:red"] {
    background-color: #f8d7da; 
    border: 1px solid #f5c6cb;
    color: #721c24; 
}

form p[style*="color:green"] {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724; 
}


.btn.btn__home {
    position: absolute;
    top: 20px; 
    left: 20px; 
    text-decoration: none;
    color: white; 
    background-color: #3c94d1; 
    padding: 10px 20px;
    border-radius: 5px; 
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000; 
}

.btn.btn__home:hover {
    background-color: #0056b3; 
    transform: scale(1.05); 
}