@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background-color: rgb(40, 40, 40);
    display: flex;
    flex-direction: column;
}

.head {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin: 1rem 0;
    font-weight: 600;
    
    text-transform: uppercase;
}

.container {
    border: 3px solid #ff3b65;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    
}



label {
    font-size: 1.1rem;
    line-height: 1.5;
    display: block;
    margin-bottom: 0.2rem;
    color: #333;
    font-weight: 500;
}

input {
    height: 50px;
    width: 100%;
    outline: none;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-bottom: 3px solid rgb(255, 116, 139);
    margin-bottom: 10px;
}

input:focus {
    border-bottom-color: #ff3b65;
    background-color: #fff9fa;
}

button {
    padding: 12px 24px;
    border-radius: 5px;
    color: white;
    outline: none;
    width: 100%;
    max-width: 200px;
    border: none;
    background: rgb(255, 51, 126);
    font-size: 1rem;
    margin: 2rem 0 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
}

button:hover {
    background: #e6005c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 51, 126, 0.3);
}



span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .head {
        font-size: 2rem;
        margin: 1.5rem 0;
    }
    
    .container {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    button {
        padding: 10px 20px;
        max-width: 150px;
    }
}