.ss-wrapper{
    width:100%;
    max-width:450px;
    margin:30px auto;
}

.ss-card{
    background:#ffffff;
    border:1px solid #e5e5e5;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.ss-field{
    margin-bottom:15px;
}

.ss-wrapper input{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    outline:none;
    font-size:15px;
    box-sizing:border-box;
}

.ss-wrapper input:focus{
    border-color:#000;
}

.ss-wrapper button{
    width:100%;
    height:50px;
    border:none;
    border-radius:8px;
    background:#000;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.ss-wrapper button:hover{
    opacity:0.9;
}

.ss-message{
    margin-bottom:15px;
}

.ss-success{
    background:#e8f7ec;
    color:#157347;
    padding:12px 15px;
    border-radius:8px;
    font-size:14px;
}

.ss-error{
    background:#fdeaea;
    color:#b42318;
    padding:12px 15px;
    border-radius:8px;
    font-size:14px;
}

.ss-info{
    background:#eef4ff;
    color:#1d4ed8;
    padding:12px 15px;
    border-radius:8px;
    font-size:14px;
}